home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / UNIXLIB37B / !UnixLib37 / src / clib / sys / h / param < prev    next >
Text File  |  1996-11-09  |  797b  |  31 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /unixb/home/unixlib/source/unixlib37/src/clib/sys/h/RCS/param,v $
  4.  * $Date: 1996/10/30 21:58:59 $
  5.  * $Revision: 1.2 $
  6.  * $State: Rel $
  7.  * $Author: unixlib $
  8.  *
  9.  * $Log: param,v $
  10.  * Revision 1.2  1996/10/30 21:58:59  unixlib
  11.  * Massive changes made by Nick Burret and Peter Burwood.
  12.  *
  13.  * Revision 1.1  1996/04/19 21:23:56  simon
  14.  * Initial revision
  15.  *
  16.  ***************************************************************************/
  17.  
  18. #ifndef __SYS_PARAM_H
  19. #define __SYS_PARAM_H
  20.  
  21. #ifndef __LIMITS_H
  22. #include <limits.h>
  23. #endif
  24.  
  25. #define MAXPATHLEN    _POSIX_PATH_MAX
  26. #define MAXCOMMANDLEN    _POSIX_ARG_MAX
  27. /* DDE utils (if present) allows command of > 256 bytes - use max of 1K */
  28. #define MAXHOSTNAMELEN    8
  29.  
  30. #endif
  31.